home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Advisor / CD-ROM Advisor.iso / prodemo / demo / loni.dxr / 00004.ls < prev    next >
Encoding:
Text File  |  1995-09-13  |  335 b   |  11 lines

  1. on enterFrame
  2.   global gCuesForVoice, gLabelsForVoiceCues, gCountOfCues, gPreTicksForCue, gNextCueIndex
  3.   if gNextCueIndex <= gCountOfCues then
  4.     repeat while the timer <= (getAt(gCuesForVoice, gNextCueIndex) - gPreTicksForCue)
  5.       put the timer
  6.       nothing()
  7.     end repeat
  8.   end if
  9.   set gNextCueIndex to gNextCueIndex + 1
  10. end
  11.